* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0b0e14; /* Deep Premium Dark */
    overflow-x: hidden;
}

.navbar-header {
    width: 100%;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 25px;
    z-index: 1000;
}

.navbar {
    width: 90%;
    max-width: 1200px;
    height: 90px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* --- Floating Logo --- */
.logo-link {
    text-decoration: none;
    display: inline-block;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatingLogo 3s ease-in-out infinite;
    cursor: pointer;
}

.logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    z-index: 10;
    border: 2px solid #00f2fe;
}

/* --- AAPKA ORIGINAL GLOW STYLE --- */
.logo-glow {
    position: absolute;
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #00f2fe, #4facfe);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
    transition: all 0.5s ease;
}

/* Hover pe Glow ka color change aur brightness */
.logo-container:hover .logo-glow {
    background: linear-gradient(45deg, #ff00ea, #00f2fe);
    filter: blur(30px);
    transform: scale(1.3);
}

/* --- DHER SAARE BRIGHT STARS --- */
.stars-container {
    position: absolute;
    width: 5px;
    /* Thode bade stars taaki dikhen */
    height: 5px;
    background: transparent;
    z-index: 5;
    opacity: 0;
    border-radius: 50%;
}

.logo-container:hover .stars-container {
    opacity: 1;
    /* 40+ Stars Logic: Har direction mein shadows */
    box-shadow:
        0 -20px #fff, 0 20px #fff, -20px 0 #fff, 20px 0 #fff,
        15px -15px #00f2fe, -15px -15px #ff00ea, 15px 15px #4facfe, -15px 15px #fff,
        10px -40px #fff, -10px 40px #00f2fe, -40px -10px #ff00ea, 40px 10px #fff,
        /* Extra dense layers */
        30px -30px #4facfe, -30px -30px #fff, 30px 30px #00f2fe, -30px 30px #ff00ea,
        0 -50px #fff, 50px 0 #00f2fe, 0 50px #ff00ea, -50px 0 #fff;

    animation: starsBurst 0.7s infinite ease-out;
}

@keyframes starsBurst {
    0% {
        transform: scale(0.2) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: scale(3.5) rotate(120deg);
        /* Stars rotate hokar phailenge */
        opacity: 100;
        /* Bahut bade explosion ke liye shadows */
        box-shadow:
            0 -150px #fff, 0 150px #fff, -150px 0 #fff, 150px 0 #fff,
            120px -120px #00f2fe, -120px -120px #ff00ea, 120px 120px #4facfe, -120px 120px #fff,
            50px -180px #fff, -50px 180px #00f2fe, -180px -50px #ff00ea, 180px 50px #fff,
            140px -140px #4facfe, -140px -140px #fff, 140px 140px #00f2fe, -140px 140px #ff00ea,
            0 -200px #fff, 200px 0 #00f2fe, 0 200px #ff00ea, -200px 0 #fff;
    }
}

@keyframes floatingLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}
/* --- Nav Links --- */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    font-size: 16px;
}

.nav-links a:hover, .nav-links a.active {
    color: #00f2fe;
    text-shadow: 0 0 10px #00f2fe;
}

.join-btn {
    padding: 12px 25px;
    background: linear-gradient(45deg, #00f2fe, #4facfe);
    border: none;
    border-radius: 12px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.join-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.6);
}

/* --- Burger Menu (Hidden by default) --- */
.burger-menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu div {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px;
    transition: 0.4s;
}

/* --- Responsiveness --- */
@media screen and (max-width: 992px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 75%;
        background: rgba(10, 14, 20, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s ease-in-out;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .burger-menu { display: block; }

    /* Burger X Animation */
    .burger-menu.toggle .bar1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .burger-menu.toggle .bar2 { opacity: 0; }
    .burger-menu.toggle .bar3 { transform: rotate(45deg) translate(-5px, -6px); }
}

.contact-section {
    min-height: 100vh;
    padding: 150px 5% 50px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Background Orbs */
.contact-bg-orbs .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
}

.orb-1 { width: 300px; height: 300px; background: #ff00cc; top: 10%; left: -5%; }
.orb-2 { width: 400px; height: 400px; background: #00d4ff; bottom: 10%; right: -5%; }

.contact-container {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    z-index: 1;
}

.contact-info h1 { font-size: 3rem; margin-bottom: 20px; }
.contact-info p { color: #ccc; margin-bottom: 40px; }

.info-item .icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%; /* Rounded Icons */
    font-size: 1.8rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 0 0 rgba(0, 212, 255, 0);
}

/* Hover par icon thoda bada hoga aur glow karega */
.info-item:hover .icon {
    transform: scale(1.2) rotate(10deg);
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    color: #fff;
}

.info-item h4 { color: #00d4ff; margin-bottom: 5px; }

/* Form Styling */
.contact-form-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.input-group { margin-bottom: 20px; }

.input-group input, .input-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.send-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #00d4ff, #3333ff);
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.send-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.4);
}

/* Text Gradient Utility */
.text-gradient {
    background: linear-gradient(to right, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 850px) {
    .contact-container { grid-template-columns: 1fr; text-align: center; }
    .info-item { justify-content: center; text-align: left; }
    .contact-info h1 { font-size: 2.2rem; }
}

/* --- Icon Hover Animations --- */
.info-item .icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%; /* Rounded Icons */
    font-size: 1.8rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 0 0 rgba(0, 212, 255, 0);
}

/* Hover par icon thoda bada hoga aur glow karega */
.info-item:hover .icon {
    transform: scale(1.2) rotate(10deg);
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    color: #fff;
}

/* --- Map Section Styling --- */
.map-section {
    padding: 80px 5%;
    display: flex;
    justify-content: center;
}

.map-wrapper {
    width: 100%;
    max-width: 1100px;
}

.map-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: white;
}

.map-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden; /* Round corners ke liye */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

/* Map par halka sa hover effect */
.map-container:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
}

/* Google Map ki blue filter (Premium Look) */
.map-container iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
    /* Dark mode map effect: Is line ko hata sakte hain agar normal map chahiye */
}

/* Anchor tag ki default styling khatam karne ke liye */
.invisible-link {
    display: flex;         /* Wahi purana flex layout */
    align-items: center;
    gap: 20px;
    text-decoration: none; /* Underline hatane ke liye */
    color: inherit;        /* Purana color barkarar rakhne ke liye */
    width: 100%;
}

.text-content h4 {
    margin: 0;
    color: #00d4ff; /* Heading color */
}

.detail-text {
    margin: 0;
    color: #ccc;    /* Text color */
}

/* Hover effect */
.invisible-link:hover .detail-text {
    color: #fff;
    transition: 0.3s;
}



.footer{
  background: linear-gradient(135deg,#0f172a,#020617);
  color:white;
  padding:60px 10%;
  font-family:sans-serif;
}

.footer-col{
  display:flex;
  flex-direction:column;
  gap:12px;
    align-items:center;
}

.footer-col img{
  width:120px;
  margin-bottom:10px;
}


.footer-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
   align-items:start;
}

.footer h3{
  margin-bottom:15px;
  color:#38bdf8;
   font-size:18px;
}

.footer a{
  display:block;
  color:#cbd5f1;
  text-decoration:none;
  margin:8px 0;
  transition:.3s;
   margin:6px 0;
}

.footer a:hover{
  color:#38bdf8;
  transform:translateX(5px);
}

.footer p{
  margin:8px 0;
  line-height:1.4;
}

.footer-bottom{
  margin-top:20px;
  padding-top:15px;
}

.logo{
width: 50%;  background:linear-gradient(45deg,#38bdf8,#818cf8);
  -webkit-background-clip:text;
  color:transparent;
}

.gradient-text{
  background: linear-gradient(45deg,#38bdf8,#818cf8);

  /* Required for gradient text */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Standard property for future support */
  background-clip: text;
  color: transparent;
}

.newsletter{
  display:flex;
  gap:10px;
  align-items:center;
}

.newsletter input{
  padding:10px;
  border:none;
  border-radius:6px;
  flex:1;
   height:42px;
}

.newsletter button{
  padding:10px 16px;
  border:none;
  border-radius:6px;
  background:#38bdf8;
  color:white;
  cursor:pointer;
}

.newsletter button:hover{
  background:#0ea5e9;
}

.footer-bottom{
  text-align:center;
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid #1f2937;
  color:#94a3b8;
}

.footer{
   padding:40px 8%;
}


.social-icons a{
  color:white;
  font-size:22px;
  transition:0.3s;
}

.social-icons a:hover{
  color:#38bdf8;
  transform:translateY(-4px);
}

.logo-col{
  display:flex;
  flex-direction:column;
  align-items:flex-start; /* left aligned */
}

.social-icons{
  display:flex;
  gap:12px;
  margin-top:10px;
}

